home *** CD-ROM | disk | FTP | other *** search
/ Universal Solutions / Universal Solutions (Cray Research)(1995).ISO / mac / DATA / A0000D.DIR / 00066_Script_66 < prev    next >
Text File  |  1995-11-28  |  1KB  |  36 lines

  1. -- do loop
  2.  
  3. on exitFrame
  4.   if rollOver(20) then  
  5.     set the visible of sprite 20 to TRUE
  6.     set the visible of sprite 21 to FALSE
  7.     set the visible of sprite 22 to FALSE
  8.     set the visible of sprite 23 to FALSE
  9.     updateStage
  10.   else if rollOver(21) then
  11.     set the visible of sprite 20 to FALSE
  12.     set the visible of sprite 21 to TRUE
  13.     set the visible of sprite 22 to FALSE
  14.     set the visible of sprite 23 to FALSE
  15.     updateStage
  16.   else if rollOver(22) then
  17.     set the visible of sprite 20 to FALSE
  18.     set the visible of sprite 21 to FALSE
  19.     set the visible of sprite 22 to TRUE
  20.     set the visible of sprite 23 to FALSE
  21.     updateStage
  22.   else if rollOver(23) then
  23.     set the visible of sprite 20 to FALSE
  24.     set the visible of sprite 21 to FALSE
  25.     set the visible of sprite 22 to FALSE
  26.     set the visible of sprite 23 to TRUE
  27.   else if rollOver(2) then
  28.     set the visible of sprite 20 to FALSE
  29.     set the visible of sprite 21 to FALSE
  30.     set the visible of sprite 22 to FALSE
  31.     set the visible of sprite 23 to FALSE
  32.     updateStage
  33.     updateStage
  34.   end if
  35.   go to marker(0)
  36. end